home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 1.iso / pc / data / Buttons.cst / 00055_Script_go help < prev    next >
Text File  |  2001-04-13  |  492b  |  29 lines

  1. Global gBalloonTimer
  2.  
  3. on mousedown
  4.   btnDown
  5. end
  6. on mouseUp
  7.   btnUp
  8.   goTo "t00","help"
  9. end
  10.  
  11. on MouseEnter
  12.   gBalloonTimer = the ticks
  13.   
  14. end
  15. on MouseWithin
  16.   if the ticks > gBalloonTimer +70 then
  17.     puppetSprite 119, true
  18.     set the member of sprite 119 = "help_balloon"
  19.     set the loc of sprite 119 = point(490, 41)
  20.     updatestage
  21.   end if
  22.   
  23. end
  24.  
  25. on MouseLeave
  26.   puppetSprite 119, false
  27.   --  set the member of sprite 115 = "empty_balloon"
  28.   updatestage
  29. end